home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2000 January / Macworld (2000-01).dmg / Serious Software / Rumpus 1.3.3 Pro CD demo.sea / Rumpus 1.3.3 Pro CD demo / Sample Scripts / FTP Add User next >
Text File  |  1999-03-16  |  536b  |  19 lines

  1. tell application "Rumpus"
  2.     
  3.     set UserRecord to "Username: Henry" & return & ¬
  4.         "Password: moofus" & return & ¬
  5.         "DropFolder: Othello 8:SomeFolder:" & return & ¬
  6.         "MaxFolderSize: 0" & return & ¬
  7.         "RestrictToDropFolder: NO" & return & ¬
  8.         "PermitLogin: YES" & return & ¬
  9.         "PermitSeeFiles: NO" & return & ¬
  10.         "PermitDownload: YES" & return & ¬
  11.         "PermitUpload: NO" & return & ¬
  12.         "PermitDelete: YES" & return & ¬
  13.         "PermitCreateFolders: NO" & return & ¬
  14.         "PermitDeleteFolders: YES" & return
  15.     
  16.     «event FTPAADDU» UserRecord
  17.     
  18. end tell
  19.